home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir30 / mcadam1.zip / MCD.ZIP / MCADAM / CALCOMP.DOC < prev    next >
Text File  |  1993-06-02  |  3KB  |  87 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.                    MICRO CADAM CALCOMP PLOTTER DRIVER
  7.  
  8.                          October 17, 1988
  9.                                       
  10.  
  11.  CalComp Plotter Driver
  12.  
  13.  INTRODUCTION:
  14.  The MICRO CADAM ccp.sys driver supports the CalComp PCI plotter 
  15.  language. The current version of this driver has a filesize of 
  16.  14728 and is dated 9/9/88. This driver supports the CalComp 
  17.  1023, 1040, 1041, 1042, 1043, 1044, 1075, and 1077 pen plotters 
  18.  as well as the CalComp 5700 and 5800 series electrostatic 
  19.  plotters. Please check the MICRO CADAM Official Hardware Support 
  20.  List to verify which of these plotters are supported by MICRO 
  21.  CADAM.
  22.  
  23.  The ccp.sys driver is installed in the config.sys file in the 
  24.  root directory of the workstation's c: drive by using the 
  25.  following statement:
  26.  
  27.                      device=c:\mcadam\ccp.sys
  28.                                       
  29.  The ccp.sys driver should be the only output device driver 
  30.  installed in the config.sys file. For more information on 
  31.  installation please see the MICRO CADAM Installation Guide.
  32.                                              
  33.                            
  34.  
  35.  DRIVER SPECIFIC INFORMATION:
  36.  CalComp plotters do not supply paper size information to the 
  37.  workstation. This must be done using the DOS environmental 
  38.  variable: 
  39.  
  40.                         SET PAPER_SIZE=wxh
  41.  
  42.  where w is the width of the paper in whole number of inches and h 
  43.  is the height of the paper in whole number of inches. For best 
  44.  results w and h should correspond to the width and height values 
  45.  of the particular MICRO CADAM model's plot data. The default 
  46.  paper size is for an E size sheet.
  47.  
  48.                           SET NFRAMES=x
  49.  
  50.  where x is the number of 45 inch long frames desired. Using 
  51.  NFRAMES provides the capability to do long plots or multiple 
  52.  frame plots. Techniques used to achieve long plots result in a 
  53.  loss of resolution plot which is proportional to the number of 
  54.  NFRAMES. Therefore, the smallest number of frames required to 
  55.  fit the entire drawing should be used.
  56.  
  57.                           SET ELECTR=YES
  58.  
  59.  is used when plotting to the CalComp electrostatic plotters.
  60.  
  61.  OPERATION FOR REDIRECTION OF OUTPUT:
  62.  The addition DOS environmental variable CCP may be used to 
  63.  redirect output to any valid DOS filename, any valid DOS device 
  64.  names (ie. COM1, COM2, LPT1, LPT2), or an incremented filename 
  65.  convention. 
  66.          examples:
  67.                                              
  68.          SET CCP=filename
  69.  
  70.                            SET CCP=COM1
  71.  
  72.                            SET CCP=LPT1
  73.  
  74.                            SET CCP=*
  75.  
  76.  The last example causes the creation of CalComp plot files in the 
  77.  local directory of your hard disk. This file is named 
  78.  cpltfile.n, where n is an integer which is incremented from 1 
  79.  each time a new model is plotted.
  80.  
  81.  Any of the environmental DOS variables discussed above may be 
  82.  added to the autoexec.bat file in the root directory of the 
  83.  workstation's c: drive or may be entered at any time from the DOS 
  84.  prompt. Typing SET followed by the ENTER key will display all 
  85.  current DOS environment settings.
  86.  
  87.